home *** CD-ROM | disk | FTP | other *** search
- Path: ccnet.com!usenet
- From: paulp@ccnet.com (Paul Pedriana)
- Newsgroups: comp.lang.c++
- Subject: Re: Templates, Microsoft and Borland
- Date: Sat, 23 Mar 1996 19:17:37 GMT
- Organization: Two-Bit Software
- Message-ID: <4j1ijm$si9@ccnet2.ccnet.com>
- References: <3152F6FF.AFC@sequent.com>
- NNTP-Posting-Host: h96-191.ccnet.com
-
- Richard Shields <richards@sequent.com> wrote:
-
- >template <class T>
- >TMatrix<T>
- >operator *(TMatrix<T> *m1, TMatrix<T> *m2);
-
- Are you sure you don't want to say:
-
- >template <class T>
- >TMatrix<T>
- >operator *(TMatrix<T>& m1, TMatrix<T>& m2);
-
- Paul Pedriana
- paulp@ccnet.com
-
-